  /* Note box container */
  .note-box {
    position: relative;
    background-color: #F7F9FC;
    padding: 1.5rem 1rem;       /* 24px trên/dưới, 16px trái/phải */
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;           /* đảm bảo pseudo không tràn */
  }

  /* Accent bar xanh, full chiều cao, không bị cắt bo góc bên trái */
  .note-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background-color: #007CFC;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  /* Đẩy nội dung vào bên phải accent bar */
  .note-box__inner {
    position: relative;
    z-index: 1;
    margin-left: 1rem;          /* cách accent bar 16px */
  }

  .note-box__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
  }

  .note-box__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .note-box__list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #525666;
  }

  .note-box__list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #007CFC;
  }

  /* Chỉnh responsive */
  @media (max-width: 767px) {
    .note-box {
      padding: 1rem 0.75rem;
      margin: 1rem 0;
    }
    .note-box__inner {
      margin-left: 0.75rem;
    }
    .note-box__title {
      font-size: 0.9375rem;
      margin-bottom: 0.5rem;
    }
    .note-box__list li {
      margin-bottom: 0.4rem;
      font-size: 0.875rem;
    }
  }
